Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 19, 2026

This PR contains the following updates:

Package Type Update Change Pending
anthropics/claude-code-action action patch v1.0.29v1.0.33 v1.0.34

Release Notes

anthropics/claude-code-action (anthropics/claude-code-action)

v1.0.33

Compare Source

Full Changelog: anthropics/claude-code-action@v1...v1.0.33

v1.0.32

Compare Source

Full Changelog: anthropics/claude-code-action@v1...v1.0.32

v1.0.31

Compare Source

What's Changed

Full Changelog: anthropics/claude-code-action@v1...v1.0.31

v1.0.30

Compare Source

What's Changed

New Contributors

Full Changelog: anthropics/claude-code-action@v1...v1.0.30


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions
Copy link
Contributor

github-actions bot commented Jan 19, 2026

Renovate PR Review Results

⚖️ Safety Assessment: ✅ Safe

🔍 Release Content Analysis

Version Changes: v1.0.29 → v1.0.33 (4 patch releases)

v1.0.33 Changes:

  • Standard maintenance release with no specific changes documented

v1.0.32 Changes:

  • Standard maintenance release with no specific changes documented

v1.0.31 Changes:

  • Fix: Ensure SSH signing key has trailing newline (PR #834)
  • Refactor: Consolidate CI workflows into single entry point (PR #836)
  • Chore: Bump Bun to 1.3.6 and setup-bun action to v2.1.2 (PR #848)
  • Refactor: Remove CLI path, use Agent SDK exclusively (PR #849)

v1.0.30 Changes:

  • Fix: Parse ALL --allowed-tools flags, not just the first one (PR #801)
  • Docs: Clarify that Claude does not auto-create PRs by default (PR #824)
  • Fix: Add checkHumanActor to agent mode (PR #826)
  • Chore: Comment out release-base-action job in release workflow (PR #833)

Key Findings:

  • No breaking changes identified across all 4 patch versions
  • Primary changes are bug fixes, internal refactoring, and documentation improvements
  • The most significant fix in v1.0.30 addresses allowed-tools parsing (relevant to this action's usage)
  • v1.0.31 transitions from CLI to Agent SDK exclusively (internal change)
  • No API changes that affect consumers of the action
  • No security-related fixes mentioned

🎯 Impact Scope Investigation

Usage Location: action.yml:105

- uses: anthropics/claude-code-action/base-action@8341a564b0c1693e9fa29c681852ee3714980098 # v1.0.33

Impact Analysis:

  • This action uses the base-action sub-action from anthropics/claude-code-action
  • The action is invoked with three inputs:
    • anthropic_api_key: API authentication (no changes)
    • claude_code_oauth_token: OAuth authentication (no changes)
    • claude_args: CLI arguments including --allowedTools flag (no changes)
  • The --allowedTools parsing fix in v1.0.30 could potentially improve behavior when multiple allowed tools are specified
  • Current usage passes allowed tools via --allowedTools flag (action.yml:112), which benefits from the v1.0.30 fix
  • No changes to input/output contracts
  • No changes to environment variable requirements
  • The transition to Agent SDK in v1.0.31 is internal and does not affect the action's interface

Configuration Impact:

  • No changes required to action.yml
  • No changes required to workflow files
  • No changes required to the allowed-tools input format

Dependency Impact:

  • This is a GitHub Action dependency (not a package.json dependency)
  • No cascading dependency updates required
  • No conflicts with other actions in the workflow

💡 Recommended Actions

Immediate Actions:

  • ✅ Safe to merge without any code modifications
  • ✅ No configuration changes required
  • ✅ No testing required beyond standard CI validation

Post-Merge Verification:

  • Monitor the next workflow run to ensure the updated action executes successfully
  • Verify that allowed tools parsing works correctly (should benefit from v1.0.30 fix)

Notes:

  • The update from v1.0.29 to v1.0.33 includes useful bug fixes, particularly the allowed-tools parsing improvement
  • All changes are backward compatible
  • The commit SHA is properly pinned for security: 8341a564b0c1693e9fa29c681852ee3714980098

🔗 Reference Links

Generated by koki-develop/claude-renovate-review

@sachinmahale
Copy link

@AlexanderBartash, after this v1.0.30, our workflow is now failing.

Here is the workflow:

      - name: 🤖 Run Claude Code Review (via Bedrock)
        uses: anthropics/claude-code-action@v1
        with:
          # Use the default token for GitHub interaction (comments, file reading)
          github_token: ${{ secrets.GITHUB_TOKEN }}

          # Flag to enable AWS Bedrock integration
          use_bedrock: true

          # Enable progress tracking for visual feedback on the PR
          track_progress: true

          # The comprehensive instruction prompt for Claude
          prompt: |
            REPO: ${{ github.repository }}
            PR NUMBER: ${{ github.event.pull_request.number }}

            Perform a comprehensive code review with the following focus areas:

            1. **Code Quality**
               - Clean code principles and best practices
               - Proper error handling and edge cases
               - Code readability and maintainability

          claude_args: |
            # Defines the tools Claude is allowed to use for the review
            --allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(cat:AGENTS.md),Bash(cat:@AGENTS_my_custom_rules.md)"
            # Set max-turns higher for large/complex PRs to avoid premature termination
            --max-turns 75

we are getting below error:

SDK execution error: 7835 |       throw error;
7836 |     }
7837 |   }
7838 |   getProcessExitError(code, signal) {
7839 |     if (code !== 0 && code !== null) {
7840 |       return new Error(`Claude Code process exited with code ${code}`);
                    ^
error: Claude Code process exited with code 1
      at getProcessExitError (/home/runner/work/_actions/anthropics/claude-code-action/v1/base-action/node_modules/@anthropic-ai/claude-agent-sdk/sdk.mjs:7840:14)
      at exitHandler (/home/runner/work/_actions/anthropics/claude-code-action/v1/base-action/node_modules/@anthropic-ai/claude-agent-sdk/sdk.mjs:7970:28)
      at emit (node:events:92:22)
      at #handleOnExit (node:child_process:511:14)

@AlexanderBartash
Copy link

@sachinmahale Comments are not allowed in the claude_args: | I have a separate fix for that anthropics/claude-code-action#803 I think it never worked with comments, even before my changes because I also tried adding them and it failed, that is why the fix.

@renovate renovate bot force-pushed the renovate/anthropics-claude-code-action-1.x branch from ce543d0 to 223757b Compare January 23, 2026 23:14
@renovate renovate bot changed the title fix(deps): update anthropics/claude-code-action action to v1.0.30 fix(deps): update anthropics/claude-code-action action to v1.0.31 Jan 23, 2026
@renovate renovate bot force-pushed the renovate/anthropics-claude-code-action-1.x branch from 223757b to ce9c3a8 Compare January 24, 2026 21:56
@renovate renovate bot changed the title fix(deps): update anthropics/claude-code-action action to v1.0.31 fix(deps): update anthropics/claude-code-action action to v1.0.33 Jan 24, 2026
@koki-develop koki-develop merged commit 1e2dcba into main Jan 25, 2026
2 checks passed
@koki-develop koki-develop deleted the renovate/anthropics-claude-code-action-1.x branch January 25, 2026 22:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants